home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Startmenu Options 4.xpl < prev    next >
Text File  |  2003-11-19  |  1KB  |  54 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH"="Appearance\Taskbar"
  5. "NAME"="General Taskbar Options"
  6. "VERSION"="1.08"
  7. "OSVERSION"="0000111"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Show context menu for taskbar"
  10. "TEXT 2"="Allow resizing of taskbar"
  11. "DESCRIPTION 1"="Some options for the taskbar."
  12. "AUTHOR"="Xteq Systems (CptSiskoX)"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="Resistance is futile. "
  16.  
  17.  
  18.  
  19. sV1="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarContextMenu"
  20. sV2="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarSizeMove"
  21.  
  22. SUB Plugin_Initialize
  23.     i=RegReadValue(sV1) 
  24.     If IsEmpty(i) or i=1 then SetUIElement 1,true
  25.  
  26.     i=RegReadValue(sV2) 
  27.     if IsEmpty(i) or i=1 then SetUIElement 2,true 
  28. END SUB
  29.  
  30. SUB Plugin_CheckData(ElementIndex)
  31. END SUB
  32.  
  33. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  b=GetUIElement(1)
  35.  if b=true then
  36.     Call RegWriteValue(sV1,1,2)
  37.  else
  38.     Call RegWriteValue(sV1,0,2)
  39.  end if
  40.  
  41.  b=GetUIElement(2)
  42.  if b=true then
  43.     Call RegWriteValue(sV2,1,2)
  44.  else
  45.     Call RegWriteValue(sV2,0,2)
  46.  end if
  47.  
  48.  
  49.  Call Logoff
  50. END SUB
  51.  
  52. SUB Plugin_Terminate
  53. END SUB
  54.